home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWorkshop / Source / Examples / ToTiff / ControlLoader.h next >
Encoding:
Text File  |  1991-10-20  |  423 b   |  17 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface ControlLoader : Object
  4. {
  5. }
  6.  
  7. /*
  8.  * Loads the control method you wish to use. Currently the only supported type is
  9.  * Bitmap, but in the future, things like Draw or Sound could be added.
  10.  * Assumes:     Nothing
  11.  * Results:     If the controls type exists on disk, it's loaded and linked.
  12.  * Returns:    id of Controls object or nil if an error occured.
  13.  */
  14. + loadControl: (const char *)type;
  15.  
  16. @end
  17.